home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / dsp / dspkgctr.z / dspkgctr / gcc / genoutput.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  22KB  |  813 lines

  1. /* Generate code from to output assembler insns as recognized from rtl.
  2.    Copyright (C) 1987, 1988 Free Software Foundation, Inc.
  3.  
  4.    $Id: genoutput.c,v 1.2 91/08/06 10:01:00 jeff Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. /* This program reads the machine description for the compiler target machine
  24.    and produces a file containing three things:
  25.  
  26.    1, An array of strings `insn_template' which is indexed by insn code number
  27.    and contains the template for output of that insn,
  28.  
  29.    2. An array of ints `insn_n_operands' which is indexed by insn code number
  30.    and contains the number of distinct operands in the pattern for that insn,
  31.  
  32.    3. An array of ints `insn_n_dups' which is indexed by insn code number
  33.    and contains the number of match_dup's that appear in the insn's pattern.
  34.    This says how many elements of `recog_dup_loc' are significant
  35.    after an insn has been recognized.
  36.  
  37.    4. An array of arrays of operand constraint strings,
  38.    `insn_operand_constraint',
  39.    indexed first by insn code number and second by operand number,
  40.    containing the constraint for that operand.
  41.  
  42.    This array is generated only if register constraints appear in 
  43.    match_operand rtx's.
  44.  
  45.    5. An array of arrays of chars which indicate which operands of
  46.    which insn patterns appear within ADDRESS rtx's.  This array is
  47.    called `insn_operand_address_p' and is generated only if there
  48.    are *no* register constraints in the match_operand rtx's.
  49.  
  50.    6. An array of arrays of machine modes, `insn_operand_mode',
  51.    indexed first by insn code number and second by operand number,
  52.    containing the machine mode that that operand is supposed to have.
  53.    Also `insn_operand_strict_low', which is nonzero for operands
  54.    contained in a STRICT_LOW_PART.
  55.  
  56.    7. An array of arrays of int-valued functions, `insn_operand_predicate',
  57.    indexed first by insn code number and second by operand number,
  58.    containing the match_operand predicate for this operand.
  59.  
  60.    8. An array of functions `insn_gen_function' which, indexed
  61.    by insn code number, gives the function to generate a body
  62.    for that patter, given operands as arguments.
  63.  
  64.    9. A function `output_insn_hairy' which is called with two arguments
  65.    (an insn code number and a vector of operand value rtx's)
  66.    and returns a template to use for output of that insn.
  67.    This is used only in the cases where the template is not constant.
  68.    These cases are specified by a * at the beginning of the template string
  69.    in the machine description.  They are identified for the sake of
  70.    other parts of the compiler by a zero element in `insn_template'.
  71.   
  72.    10. An array of structures, `insn_machine_info', that gives machine-specific
  73.    information about the insn.
  74.  
  75.    11. An array of ints, `insn_n_alternatives', that gives the number
  76.    of alternatives in the constraints of each pattern.
  77.  
  78. The code number of an insn is simply its position in the machine description;
  79. code numbers are assigned sequentially to entries in the description,
  80. starting with code number 0.
  81.  
  82. Thus, the following entry in the machine description
  83.  
  84.     (define_insn "clrdf"
  85.       [(set (match_operand:DF 0 "general_operand" "")
  86.         (const_int 0))]
  87.       ""
  88.       "clrd %0")
  89.  
  90. assuming it is the 25th entry present, would cause
  91. insn_template[24] to be "clrd %0", and insn_n_operands[24] to be 1.
  92. It would not make an case in output_insn_hairy because the template
  93. given in the entry is a constant (it does not start with `*').  */
  94.  
  95. #include <stdio.h>
  96. #include "config.h"
  97. #include "rtl.h"
  98. #include "obstack.h"
  99.  
  100. /* No instruction can have more operands than this.
  101.    Sorry for this arbitrary limit, but what machine will
  102.    have an instruction with this many operands?  */
  103.  
  104. #define MAX_MAX_OPERANDS 40
  105.  
  106. struct obstack obstack;
  107. struct obstack *rtl_obstack = &obstack;
  108.  
  109. #define obstack_chunk_alloc xmalloc
  110. #define obstack_chunk_free free
  111. extern int xmalloc ();
  112. extern void free ();
  113.  
  114. void fatal ();
  115. void fancy_abort ();
  116. void error ();
  117. void mybcopy ();
  118. void mybzero ();
  119.  
  120. /* insns in the machine description are assigned sequential code numbers
  121.    that are used by insn-recog.c (produced by genrecog) to communicate
  122.    to insn-output.c (produced by this program).  */
  123.  
  124. int next_code_number;
  125.  
  126. /* Record in this chain all information that we will output,
  127.    associated with the code number of the insn.  */
  128.  
  129. struct data
  130. {
  131.   int code_number;
  132.   char *name;
  133.   char *template;        /* string such as "movl %1,%0" */
  134.   int n_operands;        /* Number of operands this insn recognizes */
  135.   int n_dups;            /* Number times match_dup appears in pattern */
  136.   int n_alternatives;        /* Number of alternatives in each constraint */
  137.   struct data *next;
  138.   char *constraints[MAX_MAX_OPERANDS];
  139.   /* Number of alternatives in constraints of operand N.  */
  140.   int op_n_alternatives[MAX_MAX_OPERANDS];
  141.   char *predicates[MAX_MAX_OPERANDS];
  142.   char address_p[MAX_MAX_OPERANDS];
  143.   enum machine_mode modes[MAX_MAX_OPERANDS];
  144.   char strict_low[MAX_MAX_OPERANDS];
  145.   char outfun;            /* Nonzero means this has an output function */
  146.   char *machine_info;        /* machine-specific info string. */
  147. };
  148.  
  149. /* This variable points to the first link in the chain.  */
  150.  
  151. struct data *insn_data;
  152.  
  153. /* Pointer to the last link in the chain, so new elements
  154.    can be added at the end.  */
  155.  
  156. struct data *end_of_insn_data;
  157.  
  158. /* Nonzero if any match_operand has a constraint string;
  159.    implies that REGISTER_CONSTRAINTS will be defined
  160.    for this machine description.  */
  161.  
  162. int have_constraints;
  163.  
  164. void
  165. output_prologue ()
  166. {
  167.  
  168.   printf ("/* Generated automatically by the program `genoutput'\n\
  169. from the machine description file `md'.  */\n\n");
  170.  
  171.   printf ("#include \"config.h\"\n");
  172.   printf ("#include \"rtl.h\"\n");
  173.   printf ("#include \"regs.h\"\n");
  174. #if defined( DSP56000 ) || defined( DSP96000 )
  175.   printf ("#if defined( _INTELC32_ )\n" );
  176.   printf ("#include \"hardrset.h\"\n");
  177.   printf ("#include \"real.h\"\n");
  178.   printf ("#include \"conds.h\"\n");
  179.   printf ("#include \"iflags.h\"\n\n");
  180.   printf ("#include \"iconfig.h\"\n");
  181.   printf ("#else\n" );
  182.   printf ("#include \"hard-reg-set.h\"\n");
  183.   printf ("#include \"real.h\"\n");
  184.   printf ("#include \"conditions.h\"\n");
  185.   printf ("#include \"insn-flags.h\"\n\n");
  186.   printf ("#include \"insn-config.h\"\n");
  187.   printf ("#endif\n" );
  188. #else
  189.   printf ("#include \"hard-reg-set.h\"\n");
  190.   printf ("#include \"real.h\"\n");
  191.   printf ("#include \"conditions.h\"\n");
  192.   printf ("#include \"insn-flags.h\"\n");
  193.   printf ("#include \"insn-config.h\"\n\n");
  194. #endif
  195.  
  196.   printf ("#ifndef __STDC__\n");
  197.   printf ("#define const\n");
  198.   printf ("#endif\n\n");
  199.  
  200.   printf ("#include \"output.h\"\n");
  201. #if defined( DSP56000 ) || defined( DSP96000 )
  202.   printf ("#if defined( _INTELC32_ )\n" );
  203.   printf ("#include \"aoutput.c\"\n\n");
  204.   printf ("#else\n" );
  205.   printf ("#include \"aux-output.c\"\n\n");
  206.   printf ("#endif\n" );
  207. #else
  208.   printf ("#include \"aux-output.c\"\n\n");
  209. #endif
  210.  
  211.   /* Make sure there is at least a dummy definition of INSN_MACHINE_INFO.  */
  212.   printf ("#ifndef INSN_MACHINE_INFO\n");
  213.   printf ("#define INSN_MACHINE_INFO struct dummy1 {int i;}\n");
  214.   printf ("#endif\n\n");
  215. }
  216.  
  217. void
  218. output_epilogue ()
  219. {
  220.   register struct data *d;
  221.  
  222.   printf ("\nchar * const insn_template[] =\n  {\n");
  223.   for (d = insn_data; d; d = d->next)
  224.     {
  225.       if (d->template)
  226.     printf ("    \"%s\",\n", d->template);
  227.       else
  228.     printf ("    0,\n");
  229.     }
  230.   printf ("  };\n");
  231.  
  232.   printf ("\nchar *(*const insn_outfun[])() =\n  {\n");
  233.   for (d = insn_data; d; d = d->next)
  234.     {
  235.       if (d->outfun)
  236.     printf ("    output_%d,\n", d->code_number);
  237.       else
  238.     printf ("    0,\n");
  239.     }
  240.   printf ("  };\n");
  241.  
  242.   printf ("\nrtx (*const insn_gen_function[]) () =\n  {\n");
  243.   for (d = insn_data; d; d = d->next)
  244.     {
  245.       if (d->name)
  246.     printf ("    gen_%s,\n", d->name);
  247.       else
  248.     printf ("    0,\n");
  249.     }
  250.   printf ("  };\n");
  251.  
  252.   printf ("\nconst int insn_n_operands[] =\n  {\n");
  253.   for (d = insn_data; d; d = d->next)
  254.     {
  255.       printf ("    %d,\n", d->n_operands);
  256.     }
  257.   printf ("  };\n");
  258.  
  259.   printf ("\nconst int insn_n_dups[] =\n  {\n");
  260.   for (d = insn_data; d; d = d->next)
  261.     {
  262.       printf ("    %d,\n", d->n_dups);
  263.     }
  264.   printf ("  };\n");
  265.  
  266.   if (have_constraints)
  267.     {
  268.       printf ("\nchar *const insn_operand_constraint[][MAX_RECOG_OPERANDS] =\n  {\n");
  269.       for (d = insn_data; d; d = d->next)
  270.     {
  271.       register int i, n = 0, start;
  272.       printf ("    {");
  273.       /* Make sure all the operands have the same number of
  274.          alternatives in their constraints.
  275.          Let N be that number.  */
  276.       for (start = 0; start < d->n_operands; start++)
  277.         if (d->op_n_alternatives[start] > 0)
  278.           {
  279.         if (n == 0)
  280.           n = d->op_n_alternatives[start];
  281.         else if (n != d->op_n_alternatives[start])
  282.           error ("wrong number of alternatives in operand %d of insn number %d",
  283.              start, d->code_number);
  284.           }
  285.       /* Record the insn's overall number of alternatives.  */
  286.       d->n_alternatives = n;
  287.  
  288.       for (i = 0; i < d->n_operands; i++)
  289.         {
  290.           if (d->constraints[i] == 0)
  291.         printf (" \"\",");
  292.           else
  293.         printf (" \"%s\",", d->constraints[i]);
  294.         }
  295.       if (d->n_operands == 0)
  296.         printf (" 0");
  297.       printf (" },\n");
  298.     }
  299.       printf ("  };\n");
  300.     }
  301.   else
  302.     {
  303.       printf ("\nconst char insn_operand_address_p[][MAX_RECOG_OPERANDS] =\n  {\n");
  304.       for (d = insn_data; d; d = d->next)
  305.     {
  306.       register int i;
  307.       printf ("    {");
  308.       for (i = 0; i < d->n_operands; i++)
  309.         printf (" %d,", d->address_p[i]);
  310.       if (d->n_operands == 0)
  311.         printf (" 0");
  312.       printf (" },\n");
  313.     }
  314.       printf ("  };\n");
  315.     }
  316.  
  317.   printf ("\nconst enum machine_mode insn_operand_mode[][MAX_RECOG_OPERANDS] =\n  {\n");
  318.   for (d = insn_data; d; d = d->next)
  319.     {
  320.       register int i;
  321.       printf ("    {");
  322.       for (i = 0; i < d->n_operands; i++)
  323.     printf (" %smode,", GET_MODE_NAME (d->modes[i]));
  324.       if (d->n_operands == 0)
  325.     printf (" VOIDmode");
  326.       printf (" },\n");
  327.     }
  328.   printf ("  };\n");
  329.  
  330.   printf ("\nconst char insn_operand_strict_low[][MAX_RECOG_OPERANDS] =\n  {\n");
  331.   for (d = insn_data; d; d = d->next)
  332.     {
  333.       register int i;
  334.       printf ("    {");
  335.       for (i = 0; i < d->n_operands; i++)
  336.     printf (" %d,", d->strict_low[i]);
  337.       if (d->n_operands == 0)
  338.     printf (" 0");
  339.       printf (" },\n");
  340.     }
  341.   printf ("  };\n");
  342.  
  343.   printf ("\nint (*const insn_operand_predicate[][MAX_RECOG_OPERANDS])() =\n  {\n");
  344.   for (d = insn_data; d; d = d->next)
  345.     {
  346.       register int i;
  347.       printf ("    {");
  348.       for (i = 0; i < d->n_operands; i++)
  349.     printf (" %s,", ((d->predicates[i] && d->predicates[i][0])
  350.              ? d->predicates[i] : "0"));
  351.       if (d->n_operands == 0)
  352.     printf (" 0");
  353.       printf (" },\n");
  354.     }
  355.   printf ("  };\n");
  356.  
  357.   printf ("\n#ifndef DEFAULT_MACHINE_INFO\n#define DEFAULT_MACHINE_INFO 0\n");
  358.   printf ("#endif\n\nconst INSN_MACHINE_INFO insn_machine_info[] =\n  {\n");
  359.   for (d = insn_data; d; d = d->next)
  360.     {
  361.       if (d->machine_info)
  362.     printf ("    {%s},\n", d->machine_info);
  363.       else
  364.     printf("     { DEFAULT_MACHINE_INFO },\n");
  365.     }
  366.   printf("  };\n");
  367.  
  368.   printf ("\nconst int insn_n_alternatives[] =\n  {\n");
  369.   for (d = insn_data; d; d = d->next)
  370.     {
  371.       if (d->n_alternatives)
  372.     printf ("    %d,\n", d->n_alternatives);
  373.       else
  374.     printf("     0,\n");
  375.     }
  376.   printf("  };\n");
  377. }
  378.  
  379. /* scan_operands (X) stores in max_opno the largest operand
  380.    number present in X, if that is larger than the previous
  381.    value of max_opno.  It stores all the constraints in `constraints'
  382.    and all the machine modes in `modes'.
  383.  
  384.    THIS_ADDRESS_P is nonzero if the containing rtx was an ADDRESS.
  385.    THIS_STRICT_LOW is nonzero if the containing rtx was a STRICT_LOW_PART.  */
  386.  
  387. int max_opno;
  388. int num_dups;
  389. char *constraints[MAX_MAX_OPERANDS];
  390. int op_n_alternatives[MAX_MAX_OPERANDS];
  391. char *predicates[MAX_MAX_OPERANDS];
  392. char address_p[MAX_MAX_OPERANDS];
  393. enum machine_mode modes[MAX_MAX_OPERANDS];
  394. char strict_low[MAX_MAX_OPERANDS];
  395.  
  396. void
  397. scan_operands (part, this_address_p, this_strict_low)
  398.      rtx part;
  399.      int this_address_p;
  400.      int this_strict_low;
  401. {
  402.   register int i, j;
  403.   register RTX_CODE code;
  404.   register char *format_ptr;
  405.  
  406.   if (part == 0)
  407.     return;
  408.  
  409.   code = GET_CODE (part);
  410.  
  411.   if (code == MATCH_OPERAND)
  412.     {
  413.       int opno = XINT (part, 0);
  414.       if (opno > max_opno)
  415.     max_opno = opno;
  416.       if (max_opno >= MAX_MAX_OPERANDS)
  417.     error ("Too many operands (%d) in one instruction pattern.\n",
  418.            max_opno + 1);
  419.       modes[opno] = GET_MODE (part);
  420.       strict_low[opno] = this_strict_low;
  421.       predicates[opno] = XSTR (part, 1);
  422.       constraints[opno] = XSTR (part, 2);
  423.       if (XSTR (part, 2) != 0 && *XSTR (part, 2) != 0)
  424.     {
  425.       op_n_alternatives[opno] = n_occurrences (',', XSTR (part, 2)) + 1;
  426.       have_constraints = 1;
  427.     }
  428.       address_p[opno] = this_address_p;
  429.       return;
  430.     }
  431.  
  432.   if (code == MATCH_OPERATOR)
  433.     {
  434.       int opno = XINT (part, 0);
  435.       if (opno > max_opno)
  436.     max_opno = opno;
  437.       if (max_opno >= MAX_MAX_OPERANDS)
  438.     error ("Too many operands (%d) in one instruction pattern.\n",
  439.            max_opno + 1);
  440.       modes[opno] = GET_MODE (part);
  441.       strict_low[opno] = 0;
  442.       predicates[opno] = XSTR (part, 1);
  443.       constraints[opno] = 0;
  444.       address_p[opno] = 0;
  445.       for (i = 0; i < XVECLEN (part, 2); i++)
  446.     scan_operands (XVECEXP (part, 2, i), 0, 0);
  447.       return;
  448.     }
  449.  
  450.   if (code == MATCH_DUP)
  451.     {
  452.       ++num_dups;
  453.       return;
  454.     }
  455.  
  456.   if (code == ADDRESS)
  457.     {
  458.       scan_operands (XEXP (part, 0), 1, 0);
  459.       return;
  460.     }
  461.  
  462.   if (code == STRICT_LOW_PART)
  463.     {
  464.       scan_operands (XEXP (part, 0), 0, 1);
  465.       return;
  466.     }
  467.  
  468.   format_ptr = GET_RTX_FORMAT (GET_CODE (part));
  469.  
  470.   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
  471.     switch (*format_ptr++)
  472.       {
  473.       case 'e':
  474.     scan_operands (XEXP (part, i), 0, 0);
  475.     break;
  476.       case 'E':
  477.     if (XVEC (part, i) != NULL)
  478.       for (j = 0; j < XVECLEN (part, i); j++)
  479.         scan_operands (XVECEXP (part, i, j), 0, 0);
  480.     break;
  481.       }
  482. }
  483.  
  484. /* Look at a define_insn just read.  Assign its code number.
  485.    Record on insn_data the template and the number of arguments.
  486.    If the insn has a hairy output action, output a function for now.  */
  487.  
  488. void
  489. gen_insn (insn)
  490.      rtx insn;
  491. {
  492.   register struct data *d = (struct data *) xmalloc (sizeof (struct data));
  493.   register int i;
  494.  
  495.   d->code_number = next_code_number++;
  496.   if (XSTR (insn, 0)[0])
  497.     d->name = XSTR (insn, 0);
  498.   else
  499.     d->name = 0;
  500.  
  501.   /* Build up the list in the same order as the insns are seen
  502.      in the machine description.  */
  503.   d->next = 0;
  504.   if (end_of_insn_data)
  505.     end_of_insn_data->next = d;
  506.   else
  507.     insn_data = d;
  508.  
  509.   end_of_insn_data = d;
  510.  
  511.   max_opno = -1;
  512.   num_dups = 0;
  513.  
  514.   mybzero (constraints, sizeof constraints);
  515.   mybzero (op_n_alternatives, sizeof op_n_alternatives);
  516.   mybzero (predicates, sizeof predicates);
  517.   mybzero (address_p, sizeof address_p);
  518.   mybzero (modes, sizeof modes);
  519.   mybzero (strict_low, sizeof strict_low);
  520.   for (i = 0; i < XVECLEN (insn, 1); i++)
  521.     scan_operands (XVECEXP (insn, 1, i), 0, 0);
  522.   d->n_operands = max_opno + 1;
  523.   d->n_dups = num_dups;
  524.   mybcopy (constraints, d->constraints, sizeof constraints);
  525.   mybcopy (op_n_alternatives, d->op_n_alternatives, sizeof op_n_alternatives);
  526.   mybcopy (predicates, d->predicates, sizeof predicates);
  527.   mybcopy (address_p, d->address_p, sizeof address_p);
  528.   mybcopy (modes, d->modes, sizeof modes);
  529.   mybcopy (strict_low, d->strict_low, sizeof strict_low);
  530.   d->machine_info = XSTR (insn, 4);
  531.  
  532.   /* We need to consider only the instructions whose assembler code template
  533.      starts with a *.  These are the ones where the template is really
  534.      C code to run to decide on a template to use.
  535.      So for all others just return now.  */
  536.  
  537.   if (XSTR (insn, 3)[0] != '*')
  538.     {
  539.       d->template = XSTR (insn, 3);
  540.       d->outfun = 0;
  541.       return;
  542.     }
  543.  
  544.   d->template = 0;
  545.   d->outfun = 1;
  546.  
  547.   printf ("\nstatic char *\n");
  548.   printf ("output_%d (operands, insn)\n", d->code_number);
  549.   printf ("     rtx *operands;\n");
  550.   printf ("     rtx insn;\n");
  551.   printf ("{\n");
  552.   /* The following is done in a funny way to get around problems in
  553.      VAX-11 "C" on VMS.  It is the equivalent of:
  554.         printf ("%s\n", &(XSTR (insn, 3)[1])); */
  555.   {
  556.     register char *cp = &(XSTR (insn, 3)[1]);
  557.     while (*cp) putchar (*cp++);
  558.     putchar ('\n');
  559.   }
  560.   printf ("}\n");
  561. }
  562.  
  563. /* Look at a define_peephole just read.  Assign its code number.
  564.    Record on insn_data the template and the number of arguments.
  565.    If the insn has a hairy output action, output it now.  */
  566.  
  567. void
  568. gen_peephole (peep)
  569.      rtx peep;
  570. {
  571.   register struct data *d = (struct data *) xmalloc (sizeof (struct data));
  572.   register int i;
  573.  
  574.   d->code_number = next_code_number++;
  575.   d->name = 0;
  576.  
  577.   /* Build up the list in the same order as the insns are seen
  578.      in the machine description.  */
  579.   d->next = 0;
  580.   if (end_of_insn_data)
  581.     end_of_insn_data->next = d;
  582.   else
  583.     insn_data = d;
  584.  
  585.   end_of_insn_data = d;
  586.  
  587.   max_opno = -1;
  588.   mybzero (constraints, sizeof constraints);
  589.   mybzero (op_n_alternatives, sizeof op_n_alternatives);
  590.  
  591.   /* Get the number of operands by scanning all the
  592.      patterns of the peephole optimizer.
  593.      But ignore all the rest of the information thus obtained.  */
  594.   for (i = 0; i < XVECLEN (peep, 0); i++)
  595.     scan_operands (XVECEXP (peep, 0, i), 0, 0);
  596.  
  597.   d->n_operands = max_opno + 1;
  598.   d->n_dups = 0;
  599.   mybcopy (constraints, d->constraints, sizeof constraints);
  600.   mybcopy (op_n_alternatives, d->op_n_alternatives, sizeof op_n_alternatives);
  601.   mybzero (d->predicates, sizeof predicates);
  602.   mybzero (d->address_p, sizeof address_p);
  603.   mybzero (d->modes, sizeof modes);
  604.   mybzero (d->strict_low, sizeof strict_low);
  605.   d->machine_info = XSTR (peep, 3);
  606.  
  607.   /* We need to consider only the instructions whose assembler code template
  608.      starts with a *.  These are the ones where the template is really
  609.      C code to run to decide on a template to use.
  610.      So for all others just return now.  */
  611.  
  612.   if (XSTR (peep, 2)[0] != '*')
  613.     {
  614.       d->template = XSTR (peep, 2);
  615.       d->outfun = 0;
  616.       return;
  617.     }
  618.  
  619.   d->template = 0;
  620.   d->outfun = 1;
  621.  
  622.   printf ("\nstatic char *\n");
  623.   printf ("output_%d (operands, insn)\n", d->code_number);
  624.   printf ("     rtx *operands;\n");
  625.   printf ("     rtx insn;\n");
  626.   printf ("{\n");
  627.   printf ("%s\n", &(XSTR (peep, 2)[1]));
  628.   printf ("}\n");
  629. }
  630.  
  631. /* Process a define_expand just read.  Assign its code number,
  632.    only for the purposes of `insn_gen_function'.  */
  633.  
  634. void
  635. gen_expand (insn)
  636.      rtx insn;
  637. {
  638.   register struct data *d = (struct data *) xmalloc (sizeof (struct data));
  639.   register int i;
  640.  
  641.   d->code_number = next_code_number++;
  642.   if (XSTR (insn, 0)[0])
  643.     d->name = XSTR (insn, 0);
  644.   else
  645.     d->name = 0;
  646.  
  647.   /* Build up the list in the same order as the insns are seen
  648.      in the machine description.  */
  649.   d->next = 0;
  650.   if (end_of_insn_data)
  651.     end_of_insn_data->next = d;
  652.   else
  653.     insn_data = d;
  654.  
  655.   end_of_insn_data = d;
  656.  
  657.   max_opno = -1;
  658.   num_dups = 0;
  659.  
  660.   /* Scan the operands to get the specified predicates and modes,
  661.      since expand_binop needs to know them.  */
  662.  
  663.   mybzero (predicates, sizeof predicates);
  664.   mybzero (modes, sizeof modes);
  665.   if (XVEC (insn, 1))
  666.     for (i = 0; i < XVECLEN (insn, 1); i++)
  667.       scan_operands (XVECEXP (insn, 1, i), 0, 0);
  668.   d->n_operands = max_opno + 1;
  669.   mybcopy (predicates, d->predicates, sizeof predicates);
  670.   mybcopy (modes, d->modes, sizeof modes);
  671.  
  672.   mybzero (d->constraints, sizeof constraints);
  673.   mybzero (d->op_n_alternatives, sizeof op_n_alternatives);
  674.   mybzero (d->address_p, sizeof address_p);
  675.   mybzero (d->strict_low, sizeof strict_low);
  676.  
  677.   d->n_dups = 0;
  678.   d->template = 0;
  679.   d->outfun = 0;
  680.   d->machine_info = 0;
  681. }
  682.  
  683. int
  684. xmalloc (size)
  685. {
  686.   register int val = malloc (size);
  687.  
  688.   if (val == 0)
  689.     fatal ("virtual memory exhausted");
  690.   return val;
  691. }
  692.  
  693. int
  694. xrealloc (ptr, size)
  695.      char *ptr;
  696.      int size;
  697. {
  698.   int result = realloc (ptr, size);
  699.   if (!result)
  700.     fatal ("virtual memory exhausted");
  701.   return result;
  702. }
  703.  
  704. void
  705. mybzero (b, length)
  706.      register char *b;
  707.      register int length;
  708. {
  709.   while (length-- > 0)
  710.     *b++ = 0;
  711. }
  712.  
  713. void
  714. mybcopy (b1, b2, length)
  715.      register char *b1;
  716.      register char *b2;
  717.      register int length;
  718. {
  719.   while (length-- > 0)
  720.     *b2++ = *b1++;
  721. }
  722.  
  723. void
  724. fatal (s, a1, a2)
  725.      char *s;
  726. {
  727.   fprintf (stderr, "genoutput: ");
  728.   fprintf (stderr, s, a1, a2);
  729.   fprintf (stderr, "\n");
  730.   exit (FATAL_EXIT_CODE);
  731. }
  732.  
  733. /* More 'friendly' abort that prints the line and file.
  734.    config.h can #define abort fancy_abort if you like that sort of thing.  */
  735.  
  736. void
  737. fancy_abort ()
  738. {
  739.   fatal ("Internal gcc abort.");
  740. }
  741.  
  742. void
  743. error (s, a1, a2)
  744.      char *s;
  745. {
  746.   fprintf (stderr, "genoutput: ");
  747.   fprintf (stderr, s, a1, a2);
  748.   fprintf (stderr, "\n");
  749. }
  750.  
  751. int
  752. main (argc, argv)
  753.      int argc;
  754.      char **argv;
  755. {
  756.   rtx desc;
  757.   FILE *infile;
  758.   extern rtx read_rtx ();
  759.   register int c;
  760.  
  761.   obstack_init (rtl_obstack);
  762.  
  763.   if (argc <= 1)
  764.     fatal ("No input file name.");
  765.  
  766.   infile = fopen (argv[1], "r");
  767.   if (infile == 0)
  768.     {
  769.       perror (argv[1]);
  770.       exit (FATAL_EXIT_CODE);
  771.     }
  772.  
  773.   init_rtl ();
  774.  
  775.   output_prologue ();
  776.   next_code_number = 0;
  777.   have_constraints = 0;
  778.  
  779.   /* Read the machine description.  */
  780.  
  781.   while (1)
  782.     {
  783.       c = read_skip_spaces (infile);
  784.       if (c == EOF)
  785.     break;
  786.       ungetc (c, infile);
  787.  
  788.       desc = read_rtx (infile);
  789.       if (GET_CODE (desc) == DEFINE_INSN)
  790.     gen_insn (desc);
  791.       if (GET_CODE (desc) == DEFINE_PEEPHOLE)
  792.     gen_peephole (desc);
  793.       if (GET_CODE (desc) == DEFINE_EXPAND)
  794.     gen_expand (desc);
  795.     }
  796.  
  797.   output_epilogue ();
  798.  
  799.   fflush (stdout);
  800.   exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
  801. }
  802.  
  803. int
  804. n_occurrences (c, s)
  805.      char c;
  806.      char *s;
  807. {
  808.   int n = 0;
  809.   while (*s)
  810.     n += (*s++ == c);
  811.   return n;
  812. }
  813.